home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19941031-19941221 / 000012_news@columbia.edu_Tue Nov 1 18:17:22 1994.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA10323
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 1 Nov 1994 13:17:28 -0500
  3. Received: by apakabar.cc.columbia.edu id AA25720
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 1 Nov 1994 13:17:26 -0500
  5. Path: news.columbia.edu!usenet
  6. From: fdc@fdc.cc.columbia.edu (Frank da Cruz)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: MS-DOS Kermit Slide Shows
  9. Date: 1 Nov 1994 18:17:22 GMT
  10. Organization: Columbia University
  11. Lines: 35
  12. Message-Id: <3960ni$p3m@apakabar.cc.columbia.edu>
  13. Nntp-Posting-Host: fdc.cc.columbia.edu
  14. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15.  
  16. Henrik Graversen <hsgraver@inet.uni-c.dk> wrote:
  17. > Is there a way to control the speed of the REPLAY command
  18. > in MS Kermit 3.12?  Or maybe even a way to use pagedown, pageup, etc.?
  19. > When I have logged a session to session.log and and want to take a look
  20. > at the log-file it is far from easy to read it as it scrolls by at 100
  21. > mph.
  22. There are some tricks.
  23.  
  24. The best trick is to get a more up-to-date version of Kermit (3.13 or 3.14
  25. Beta), which allows *huge* rollback buffers if you put them in Expanded
  26. Memory (EMS) via the new command SET TERMINAL EXPANDED-MEMORY ON.  Then
  27. you can use SET TERM ROLLBACK <number> to allocate as many as 8000
  28. rollback screens.  NOTE: This requires that you have a big physical memory
  29. (more than 2MB or more) and that you use an expanded memory manager to
  30. configure a lot of EMS.  See the KERMIT.BWR file that comes with version
  31. 3.13 or 3.14.
  32.  
  33. Then you can REPLAY the log file and it will fly past at 100 miles per
  34. hour.  But after that you can use Home, PgUp, PgDn, Ctrl-PgUp, Ctrl-PgDn,
  35. and End to view it at your leisure.  (You can also use new keyboard verbs
  36. to scroll right and left, in case the virtual screen is wider than the
  37. physical screen).
  38.  
  39. The second trick would be to transfer the log file to the host and then
  40. either run it through something like "more" (not great, since it
  41. interferes with the display), or write a little utility program that looks
  42. for special "signs" in the log (which you would insert with an editor), at
  43. which it should pause until you press a key.
  44.  
  45. For MS-DOS Kermit 3.14 Beta: anonymous ftp to kermit.columbia.edu, directory
  46. kermit/test/bin, binary mode, file mstibm.zip.
  47.  
  48. - Frank